home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / util / moni / Scout-src.lha / src / scout.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-09  |  3.0 KB  |  108 lines

  1. /**
  2.  * Scout - The Amiga System Monitor
  3.  *
  4.  *------------------------------------------------------------------
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * You must not use this source code to gain profit of any kind!
  21.  *
  22.  *------------------------------------------------------------------
  23.  *
  24.  * @author Andreas Gelhausen
  25.  * @author Richard Körber <rkoerber@gmx.de>
  26.  */
  27.  
  28.  
  29.  
  30. #ifndef SCOUT_H
  31. #define SCOUT_H
  32.  
  33. /* System */
  34. #include <dos.h>
  35. #include <proto/asl.h>
  36. #include <proto/diskfont.h>
  37. #include <proto/dos.h>
  38. #include <proto/exec.h>
  39. #include <proto/expansion.h>
  40. #include <proto/gadtools.h>
  41. #include <proto/graphics.h>
  42. #include <proto/icon.h>
  43. #include <proto/identify.h>
  44. #include <proto/commodities.h>
  45. #include <proto/intuition.h>
  46. #include <proto/muimaster.h>
  47. #include <proto/rexxsyslib.h>
  48. #include <proto/usergroup.h>
  49. #include <proto/utility.h>
  50. #include <proto/misc.h>
  51. #include <proto/cia.h>
  52. #include <proto/timer.h>
  53.  
  54. #include <devices/input.h>
  55. #include <devices/timer.h>
  56. #include <exec/execbase.h>
  57. #include <exec/memory.h>
  58. #include <exec/resident.h>
  59. #include <intuition/intuitionbase.h>
  60. #include <libraries/configvars.h>
  61. #include <libraries/commodities.h>
  62. #include <libraries/commodities_private.h>
  63. #include <libraries/expansion.h>
  64. #include <libraries/identify.h>
  65. #include <libraries/usergroup.h>
  66. #include <rexx/rxslib.h>
  67. #include <resources/misc.h>
  68. #include <resources/cia.h>
  69.  
  70. /* ANSI C */
  71. #include <stdarg.h>
  72. #include <stdlib.h>
  73. #include <string.h>
  74. #include <stdio.h>
  75.  
  76. /* MUI */
  77. #include <libraries/mui.h>
  78.  
  79. /* PROJECT */
  80.  
  81. #include "scout_protos.h"
  82. #include "scout_defs.h"
  83. #include "startup_protos.h"
  84. #include "startup_defs.h"
  85. #include "scout_globals_protos.h"
  86. #include "scout_net_protos.h"
  87.  
  88. #include "objects/scout_asm_protos.h"
  89. #include "objects/scout_extras_protos.h"
  90. #include "objects/scout_expansions_protos.h"
  91. #include "objects/scout_flags_protos.h"
  92. #include "objects/scout_fonts_protos.h"
  93. #include "objects/scout_libs_protos.h"
  94. #include "objects/scout_locks_protos.h"
  95. #include "objects/scout_ports_protos.h"
  96. #include "objects/scout_semaphores_protos.h"
  97. #include "objects/scout_tasks_protos.h"
  98. #include "objects/scout_windows_protos.h"
  99. #include "objects/scout_mount_protos.h"
  100. #include "objects/scout_commands_protos.h"
  101. #include "objects/scout_arexx_protos.h"
  102. #include "objects/scout_assigns_protos.h"
  103. #include "objects/scout_commodity_protos.h"
  104. #include "objects/scout_screenmode_protos.h"
  105. #include "objects/scout_classes_protos.h"
  106.  
  107. #endif /* SCOUT_H */
  108.